home *** CD-ROM | disk | FTP | other *** search
- Program Copyrite;
-
- { Displays the name of your program, Copyright information and waits
- for a keypress. }
-
- CONST
- {$I gemconst.pas }
-
- TYPE
- {$I gemtype.pas }
-
- VAR
- Choice : integer; { For 'point-and-click' }
- Alert_Box : string[255]; { For building Alert Box text }
-
-
- {$I gemsubs.pas }
-
- BEGIN
- If Init_Gem >= 0 then
- BEGIN
- Alert_Box := CONCAT( '[0][' ,
- 'Copyright 1986 by David Meile|',
- 'Portions of this product are |',
- 'Copyright 1986, OSS and CCD. |',
- ' Used by Permission of OSS.]',
- '[ OK ]' );
- Choice := Do_Alert( Alert_Box, 1 );
- Exit_Gem;
- END;
- END.
-